from gtts import gTTS
import os

# Define the combined text
text = "Print "

# Set the language
language = 'En'

# Create a gTTS object
speech = gTTS(text=text, lang=language, slow=False)

# Save the audio file
speech.save("output.mp3")

# Play the audio file
os.system("start output.mp3")